
@font-face {
  font-family: "Poppins";
  src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/poppins/Poppins-Regular.woff') format('woff'),
}

@font-face {
  font-family: "Poppins SemiBold";
  src: url('../fonts/poppins/SemiBold/Poppins-SemiBold.woff2') format('woff2'),
       url('../fonts/poppins/SemiBold/Poppins-SemiBold.woff') format('woff'),
}

@font-face {
  font-family: "Poppins Bold";
  src: url('../fonts/poppins/Bold/Poppins-Bold.woff2') format('woff2'),
       url('../fonts/poppins/Bold/Poppins-Bold.woff') format('woff'),
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.header {
    width: 100%;
    position: relative;
    text-align: center;
}

.header img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header .logo img {

    height: 100px;
    width: auto;
}

.support {
    margin-top: 20px;
    text-align: center;
    color: #333;
}

.support h2 {
    font-size: 1.4rem;
	font-family: 'Poppins SemiBold';
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
	flex-wrap: wrap;
}

.contact-container a {
    text-decoration: none;
    color: inherit;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
	width: 400px;
}

.contact-item .icon {
    font-size: 2rem;
    margin-right: 10px;
}

.contact-item p {
    font-size: 1rem;
	font-family: 'Poppins SemiBold';
    color: #00db53;
	text-align: center; /* Center align text within the container */
    margin: 0 auto; /* Center the text horizontally */
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
        gap: 10px;		
    }
	
	.contact-item {
		margin: 0px 15px 0px 15px;
		width: auto;
	}	
}
